home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / stdio_2 / fseek.c < prev    next >
C/C++ Source or Header  |  1995-05-28  |  7KB  |  252 lines

  1. /*-
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * Chris Torek.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *    This product includes software developed by the University of
  19.  *    California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  */
  36.  
  37. #if defined(LIBC_SCCS) && !defined(lint)
  38. static char sccsid[] = "@(#)fseek.c    5.7 (Berkeley) 2/24/91";
  39. #endif /* LIBC_SCCS and not lint */
  40.  
  41. #define KERNEL
  42. #include "ixemul.h"
  43. #include "kprintf.h"
  44. #include <fcntl.h>
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #include "local.h"
  48.  
  49. #define    POS_ERR    (-(fpos_t)1)
  50.  
  51. /*
  52.  * Seek the given file to the given offset.
  53.  * `Whence' must be one of the three SEEK_* macros.
  54.  */
  55. fseek(fp, offset, whence)
  56.     register FILE *fp;
  57.     long offset;
  58.     int whence;
  59. {
  60. #if __STDC__
  61.     register fpos_t (*seekfn)(void *, fpos_t, int);
  62. #else
  63.     register fpos_t (*seekfn)();
  64. #endif
  65.     fpos_t target, curoff;
  66.     size_t n;
  67.     struct stat st;
  68.     int havepos;
  69.  
  70. #if 0
  71.     /* make sure stdio is set up */
  72.     if (!__sdidinit)
  73.         __sinit();
  74. #endif
  75.  
  76.     /*
  77.      * Have to be able to seek.
  78.      */
  79.     if (!fp || (seekfn = fp->_seek) == NULL) {
  80.         errno = ESPIPE;            /* historic practice */
  81.         KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  82.         return (EOF);
  83.     }
  84.  
  85.     /*
  86.      * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
  87.      * After this, whence is either SEEK_SET or SEEK_END.
  88.      */
  89.     switch (whence) {
  90.  
  91.     case SEEK_CUR:
  92.         /*
  93.          * In order to seek relative to the current stream offset,
  94.          * we have to first find the current stream offset a la
  95.          * ftell (see ftell for details).
  96.          */
  97.         if (fp->_flags & __SOFF)
  98.             curoff = fp->_offset;
  99.         else {
  100.             curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
  101.             if (curoff == -1L)
  102.                 return (EOF);
  103.         }
  104.         if (fp->_flags & __SRD) {
  105.             curoff -= fp->_r;
  106.             if (HASUB(fp))
  107.                 curoff -= fp->_ur;
  108.         } else if (fp->_flags & __SWR && fp->_p != NULL)
  109.             curoff += fp->_p - fp->_bf._base;
  110.  
  111.         offset += curoff;
  112.         whence = SEEK_SET;
  113.         havepos = 1;
  114.         break;
  115.  
  116.     case SEEK_SET:
  117.     case SEEK_END:
  118.         curoff = 0;        /* XXX just to keep gcc quiet */
  119.         havepos = 0;
  120.         break;
  121.  
  122.     default:
  123.         errno = EINVAL;
  124.         KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  125.         return (EOF);
  126.     }
  127.  
  128.     /*
  129.      * Can only optimise if:
  130.      *    reading (and not reading-and-writing);
  131.      *    not unbuffered; and
  132.      *    this is a `regular' Unix file (and hence seekfn==__sseek).
  133.      * We must check __NBF first, because it is possible to have __NBF
  134.      * and __SOPT both set.
  135.      */
  136.     if (fp->_bf._base == NULL)
  137.         __smakebuf(fp);
  138.     if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
  139.         goto dumb;
  140.     if ((fp->_flags & __SOPT) == 0) {
  141.         if (seekfn != __sseek ||
  142.             fp->_file < 0 || fstat(fp->_file, &st) ||
  143.             (st.st_mode & S_IFMT) != S_IFREG) {
  144.             fp->_flags |= __SNPT;
  145.             goto dumb;
  146.         }
  147.         fp->_blksize = st.st_blksize;
  148.         fp->_flags |= __SOPT;
  149.     }
  150.  
  151.     /*
  152.      * We are reading; we can try to optimise.
  153.      * Figure out where we are going and where we are now.
  154.      */
  155.     if (whence == SEEK_SET)
  156.         target = offset;
  157.     else {
  158.         if (fstat(fp->_file, &st))
  159.             goto dumb;
  160.         target = st.st_size + offset;
  161.     }
  162.  
  163.     if (!havepos) {
  164.         if (fp->_flags & __SOFF)
  165.             curoff = fp->_offset;
  166.         else {
  167.             curoff = (*seekfn)(fp->_cookie, 0L, SEEK_CUR);
  168.             if (curoff == POS_ERR)
  169.                 goto dumb;
  170.         }
  171.         curoff -= fp->_r;
  172.         if (HASUB(fp))
  173.             curoff -= fp->_ur;
  174.     }
  175.  
  176.     /*
  177.      * Compute the number of bytes in the input buffer (pretending
  178.      * that any ungetc() input has been discarded).  Adjust current
  179.      * offset backwards by this count so that it represents the
  180.      * file offset for the first byte in the current input buffer.
  181.      */
  182.     if (HASUB(fp)) {
  183.         n = fp->_up - fp->_bf._base;
  184.         curoff -= n;
  185.         n += fp->_ur;
  186.     } else {
  187.         n = fp->_p - fp->_bf._base;
  188.         curoff -= n;
  189.         n += fp->_r;
  190.     }
  191.  
  192.     /*
  193.      * If the target offset is within the current buffer,
  194.      * simply adjust the pointers, clear EOF, undo ungetc(),
  195.      * and return.  (If the buffer was modified, we have to
  196.      * skip this; see fgetline.c.)
  197.      */
  198.     if ((fp->_flags & __SMOD) == 0 &&
  199.         target >= curoff && target < curoff + n) {
  200.         register int o = target - curoff;
  201.  
  202.         fp->_p = fp->_bf._base + o;
  203.         fp->_r = n - o;
  204.         if (HASUB(fp))
  205.             FREEUB(fp);
  206.         fp->_flags &= ~__SEOF;
  207.         return (0);
  208.     }
  209.  
  210.     /*
  211.      * The place we want to get to is not within the current buffer,
  212.      * but we can still be kind to the kernel copyout mechanism.
  213.      * By aligning the file offset to a block boundary, we can let
  214.      * the kernel use the VM hardware to map pages instead of
  215.      * copying bytes laboriously.  Using a block boundary also
  216.      * ensures that we only read one block, rather than two.
  217.      */
  218.     curoff = target & ~(fp->_blksize - 1);
  219.     if ((*seekfn)(fp->_cookie, curoff, SEEK_SET) == POS_ERR)
  220.         goto dumb;
  221.     fp->_r = 0;
  222.     if (HASUB(fp))
  223.         FREEUB(fp);
  224.     fp->_flags &= ~__SEOF;
  225.     n = target - curoff;
  226.     if (n) {
  227.         if (__srefill(fp) || fp->_r < n)
  228.             goto dumb;
  229.         fp->_p += n;
  230.         fp->_r -= n;
  231.     }
  232.     return (0);
  233.  
  234.     /*
  235.      * We get here if we cannot optimise the seek ... just
  236.      * do it.  Allow the seek function to change fp->_bf._base.
  237.      */
  238. dumb:
  239.     if (__sflush(fp) ||
  240.         (*seekfn)(fp->_cookie, offset, whence) == POS_ERR) {
  241.         return (EOF);
  242.     }
  243.     /* success: clear EOF indicator and discard ungetc() data */
  244.     if (HASUB(fp))
  245.         FREEUB(fp);
  246.     fp->_p = fp->_bf._base;
  247.     fp->_r = 0;
  248.     /* fp->_w = 0; */    /* unnecessary (I think...) */
  249.     fp->_flags &= ~__SEOF;
  250.     return (0);
  251. }
  252.